home *** CD-ROM | disk | FTP | other *** search
- #ifndef SERIAL_H
- #define SERIAL_H 1
-
- extern void com_flush_rx(void);
- extern void com_flush_tx(void);
- extern int com_carrier(void);
- extern int com_tx_ready(void);
- extern int com_tx_empty(void);
- extern int com_rx_empty(void);
- extern void com_lower_dtr(void);
- extern void com_raise_dtr(void);
- extern void com_set_speed(unsigned int Speed);
- extern void com_set_parity(void);
- extern int com_install(int PortNum);
- extern int com_init(int port_num);
- extern void com_done(void);
- extern int com_rx(void);
- extern void com_tx(int ch);
- extern void com_txs(char *s);
-
- #endif
-